page.tsx 326 B

12345678910111213141516
  1. import React from 'react'
  2. import { type Locale } from '@/i18n'
  3. import DevelopMain from '@/app/components/develop'
  4. export type IDevelopProps = {
  5. params: { locale: Locale; appId: string }
  6. }
  7. const Develop = async ({
  8. params: { appId },
  9. }: IDevelopProps) => {
  10. return <DevelopMain appId={appId} />
  11. }
  12. export default Develop